C# |
---|
public static Int32 GetInt32(Object value) |
C# |
---|
using LJCNetCommon; // Gets an int value from an object. private static void GetInt32() { // Simulates an Object value like that received from a DataTable. int setup = 3; object obj = setup; // Gets an int value from an object. int value = NetCommon.GetInt32(obj); } |